(Fmatch_data): Doc fix. Explicitly state that
authorKim F. Storm <storm@cua.dk>
Thu, 13 Feb 2003 10:33:34 +0000 (10:33 +0000)
committerKim F. Storm <storm@cua.dk>
Thu, 13 Feb 2003 10:33:34 +0000 (10:33 +0000)
match-data is undefined if last search failed.

src/search.c

index a9544a2db39901fbdf61f872551fde291a58dfed..0170838b5991dc4f334feeaeec7eb3416775f166 100644 (file)
@@ -2651,7 +2651,9 @@ Use `store-match-data' to reinstate the data in this list.
 If INTEGERS (the optional first argument) is non-nil, always use integers
 \(rather than markers) to represent buffer positions.
 If REUSE is a list, reuse it as part of the value.  If REUSE is long enough
-to hold all the values, and if INTEGERS is non-nil, no consing is done.  */)
+to hold all the values, and if INTEGERS is non-nil, no consing is done.
+
+Return value is undefined if the last search failed.  */)
      (integers, reuse)
      Lisp_Object integers, reuse;
 {